SftTree/OCX 7.0

SftTree.ItemClick Event

Softel vdm, Inc.

A mouse button is clicked.

Syntax       

VB.NET

Private Sub object_ItemClick(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.ItemClick

VB

Private Sub object_ItemClick(ByVal ItemIndex As Long, ByVal ColIndex As Integer, ByVal AreaType As Integer, ByVal Button As Integer, ByVal Shift As Integer)

C#.NET

void object_ItemClick(object sender, EventArgumentType e);

VC++

void OnItemClickobject(long ItemIndex, short ColIndex, short AreaType, short Button, short Shift);

C

HRESULT OnItemClickobject(long ItemIndex, short ColIndex, short AreaType, short Button, short Shift);

Delphi

procedure objectItemClick(Sender: TObject; ItemIndex : Integer; ColIndex : Smallint; AreaType : Smallint; Button : Smallint; Shift : Smallint);

object

A SftTree object.

ItemIndex

The zero-based index of the item at the mouse-cursor location when the mouse button was clicked.  If the area described by AreaType doesn't require item information, this value is undefined.

ColIndex

The column number of the cell at the mouse-cursor location when the mouse button was clicked.  If the area described by AreaType doesn't require column information, this value is undefined.

AreaType

Defines the area where the mouse button was clicked (see SftTreeAreaTypeConstants).

AreaType

Value

Description

constSftTreeLabel

0

The mouse button was pressed on the label graphic. ColIndex is undefined.

constSftTreePlusMinus 2) 

1

The mouse button was pressed on the plus/minus graphic. ColIndex is undefined.

constSftTreeTree

2

The mouse button was pressed in the area where the connecting tree lines are shown. ColIndex is undefined.

constSftTreeButton 2)

3

The mouse button was pressed on the expand/collapse button. ColIndex is undefined.

constSftTreeItem 

4

The mouse button was pressed on the item graphic. ColIndex is undefined.

constSftTreeText

5

The mouse button was pressed inside a cell (text or graphic). To distinguish between cell text and cell graphic use constSftTreeCellText or constSftTreeCellGraphic instead.  Preceding the ItemClick event with this AreaType value, an ItemClick event occurs with an AreaType value of constSftTreeCellText or constSftTreeCellGraphic.

constSftTreeColumnHeader 

6

The mouse button was pressed on the column headerItemIndex is undefined.

constSftTreeColumn 

6

Deprecated - Use constSftTreeColumnHeader instead. The mouse button was pressed on the column header. ItemIndex is undefined.

constSftTreeRowColumnHeader 

7

The mouse button was pressed on the row/column header. ItemIndex and ColIndex are undefined.

constSftTreeRowColumn 

7

Deprecated - Use constSftTreeRowColumnHeader instead. The mouse button was pressed on the row/column header. ItemIndex and ColIndex are undefined.

constSftTreeRow 

8

The mouse button was pressed on the row header. ColIndex is undefined.

constSftTreeCellText 

9

The mouse button was pressed inside a cell, but not on the cell graphic.

constSftTreeCellGraphic 

10

The mouse button was pressed inside a cell on the cell graphic.

constSftTreeColumnRes

11

Not used.

constSftTreeExpandAll

12

The ExpandAll key (the * on the numeric keypad) was pressed. ItemIndex and ColIndex are undefined.

constSftTreeRowColumnFooter

14

The mouse button was pressed on the row/column footer. ItemIndex and ColIndex are undefined.

constSftTreeColumnFooter

15

The mouse button was pressed on the column footerItemIndex is undefined.

Button

The button that is pressed during the event (see SftTreeButtonConstants).  The button argument is a bit field with bits corresponding to the left button, right button and middle button.  These bits correspond to the values shown below.  Only one of the bits is set, indicating the button that caused the event.

Button

Value

Description

constSftTreeLeftButton

1

The left mouse button was pressed.

constSftTreeRightButton 1)

2

The right mouse button was pressed.

constSftTreeMiddleButton 1)

4

The middle mouse button was pressed.

Shift

The state of the SHIFT, CONTROL and ALT keys during the event (see SftTreeKeyConstants).  A bit is set if the key is down.  The Shift argument is a bit field with bits corresponding to the SHIFT, CONTROL and ALT keys.  The Shift variable indicates the state of these keys.  Some, all, or none of the bits can be set, indicating which of the keys are pressed.

Shift

Value

Description

constSftTreeShiftMask 

1

The SHIFT key was pressed.

constSftTreeCtrlMask

2

The CONTROL key was pressed.

constSftTreeAltMask

4

The ALT key was pressed.

Comments

The ItemClick event occurs when a mouse button is clicked.

1) Depending on the settings of the LeftButtonOnly or LeftItemClickOnly properties, this event may not be generated for the middle and right mouse buttons.

2) If the AutoRespond property is set to True, the areas constSftTreePlusMinus, constSftTreeButton do not generate an ItemClick event for the left mouse button. The tree control responds by expanding/collapsing the items automatically. The middle and right mouse buttons still generate the event in those areas.

Please note that the ItemClick event reflects mouse button events. The SelectionChange event should be used when selection changes need to be tracked, as these can also occur though keyboard input, which is not reflected by the ItemClick event.

The ItemClick event supplies all the necessary information to the application so appropriate action can be taken. The application can start cell editing, expand or collapse an item or display application specific information based on the event and the area clicked.

The ItemDblClick event can be used to respond to a mouse button that is pressed twice within a short time. An ItemDblClick event is always preceded by an ItemClick event. If the pause between mouse click events is sufficiently long, the ItemClickAgain event may be generated instead of the ItemDblClick event.

The ItemClick event with AreaType constSftTreeColumnHeader is only generated if column headers are displayed as buttons (Headers.Appearance property), the header button is enabled (Header.Enabled property) and is not currently in its "down" position (Headers.Pressed property). The ItemClick event with AreaType constSftTreeColumnFooter is only generated if column footers are displayed as buttons (Footers.Appearance property), the footer button is enabled (Footer.Enabled property) and is not currently in its "down" position (Footers.Pressed property).

The ItemClick event with AreaType constSftTreeRowColumnHeader is only generated if a row/column header is currently displayed as a button (RowColumnHeader.Appearance property) and is enabled (RowColumnHeader.Enabled property). The ItemClick event with AreaType constSftTreeRowColumnFooter is only generated if a row/column footer is currently displayed as a button (RowColumnFooter.Appearance property) and is enabled (RowColumnFooter.Enabled property).

The ItemClick event with AreaType constSftTreeRow is only generated if row headers are displayed as buttons (RowHeaders.Appearance property) and are enabled (RowHeaders.Enabled property).  An ItemClick in this area acts as a selection.

If the ItemClick event is used to display a context sensitive menu (popup menu), the CancelMode method must be used before displaying the context menu.

See Also  SftTree Object | Object Hierarchy


Feedback / comments / error reports for this topic
© 2015 - Softel vdm, Inc. - www.softelvdm.com